home *** CD-ROM | disk | FTP | other *** search
/ CD Magazine 1996 July / CD Magazine Temmuz 1996.iso / bulmtest.dir / 00032.ls < prev    next >
Encoding:
Text File  |  1996-07-10  |  337 b   |  22 lines

  1. on enterFrame
  2.   global ca, cb, cc, cd, ce
  3.   set res to max(ca, cb, cc, cd, ce)
  4.   if res = cd then
  5.     go("D")
  6.   else
  7.     if res = cc then
  8.       go("C")
  9.     else
  10.       if res = cb then
  11.         go("B")
  12.       else
  13.         if res = ca then
  14.           go("A")
  15.         else
  16.           go("E")
  17.         end if
  18.       end if
  19.     end if
  20.   end if
  21. end
  22.